Skip to main content
GET
/
api
/
v2
/
teams
Get all teams
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "uuid": "445bd3f6-8f2c-38cb-aa04-2f4e1edb32bb",
      "id": 11,
      "is_personal_team": false,
      "name": "Jazlyn Keebler",
      "type": "Other",
      "email": "ferne52@example.com",
      "created_at": "2025-09-25T07:17:35.000000Z",
      "updated_at": "2025-09-25T07:17:35.000000Z"
    },
    {
      "uuid": "013e1265-7fdf-327c-9ed4-fc05e74df42b",
      "id": 12,
      "is_personal_team": false,
      "name": "Myrtis Tromp",
      "type": "Other",
      "email": "nstokes@example.org",
      "created_at": "2025-09-25T07:17:35.000000Z",
      "updated_at": "2025-09-25T07:17:35.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Response

200 - application/json
data
object[]
Example:
[
{
"uuid": "445bd3f6-8f2c-38cb-aa04-2f4e1edb32bb",
"id": 11,
"is_personal_team": false,
"name": "Jazlyn Keebler",
"type": "Other",
"email": "ferne52@example.com",
"created_at": "2025-09-25T07:17:35.000000Z",
"updated_at": "2025-09-25T07:17:35.000000Z"
},
{
"uuid": "013e1265-7fdf-327c-9ed4-fc05e74df42b",
"id": 12,
"is_personal_team": false,
"name": "Myrtis Tromp",
"type": "Other",
"email": "nstokes@example.org",
"created_at": "2025-09-25T07:17:35.000000Z",
"updated_at": "2025-09-25T07:17:35.000000Z"
}
]
I